home *** CD-ROM | disk | FTP | other *** search
/ The Virtual Portfolio - N…a Showcase - Book 5 1995 / VIRTUAL [md5 EC7DB5CC033E38E511F666CE80BCE509].ISO / mac / Main / VP.mac / 00104.ls < prev    next >
Encoding:
Text File  |  1995-07-18  |  1.7 KB  |  81 lines

  1. on enterFrame
  2.   repeat with channel = 26 to 48
  3.     set the visible of sprite channel to 0
  4.   end repeat
  5.   if rollOver(26) then
  6.     set the visible of sprite 26 to 1
  7.   end if
  8.   if rollOver(27) then
  9.     set the visible of sprite 27 to 1
  10.   end if
  11.   if rollOver(28) then
  12.     set the visible of sprite 28 to 1
  13.   end if
  14.   if rollOver(29) then
  15.     set the visible of sprite 29 to 1
  16.   end if
  17.   if rollOver(30) then
  18.     set the visible of sprite 30 to 1
  19.   end if
  20.   if rollOver(31) then
  21.     set the visible of sprite 31 to 1
  22.   end if
  23.   if rollOver(32) then
  24.     set the visible of sprite 32 to 1
  25.   end if
  26.   if rollOver(33) then
  27.     set the visible of sprite 33 to 1
  28.   end if
  29.   if rollOver(34) then
  30.     set the visible of sprite 34 to 1
  31.   end if
  32.   if rollOver(35) then
  33.     set the visible of sprite 35 to 1
  34.   end if
  35.   if rollOver(36) then
  36.     set the visible of sprite 36 to 1
  37.   end if
  38.   if rollOver(37) then
  39.     set the visible of sprite 37 to 1
  40.   end if
  41.   if rollOver(38) then
  42.     set the visible of sprite 38 to 1
  43.   end if
  44.   if rollOver(39) then
  45.     set the visible of sprite 39 to 1
  46.   end if
  47.   if rollOver(40) then
  48.     set the visible of sprite 40 to 1
  49.   end if
  50.   if rollOver(41) then
  51.     set the visible of sprite 41 to 1
  52.   end if
  53.   if rollOver(42) then
  54.     set the visible of sprite 42 to 1
  55.   end if
  56.   if rollOver(43) then
  57.     set the visible of sprite 43 to 1
  58.   end if
  59.   if rollOver(44) then
  60.     set the visible of sprite 44 to 1
  61.   end if
  62.   if rollOver(45) then
  63.     set the visible of sprite 45 to 1
  64.   end if
  65.   if rollOver(46) then
  66.     set the visible of sprite 46 to 1
  67.   end if
  68.   if rollOver(47) then
  69.     set the visible of sprite 47 to 1
  70.   end if
  71.   if rollOver(48) then
  72.     set the visible of sprite 48 to 1
  73.   else
  74.     nothing()
  75.   end if
  76. end
  77.  
  78. on exitFrame
  79.   go(marker(0))
  80. end
  81.